Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

196
Views
Convert the input (type="time") to Time instead of String

I am getting time input in the format of string. I need to convert it to datetime type in order to send it to the API. How can I convert a string to datetime?

<input
 placeholder="enter time"
 type="time"
 onChange={(e) => setTime(e.target.value)}
/>

Need to convert Time to datetime datatype.

about 4 years ago · Juan Pablo Isaza
2 answers
Answer question

0

change your input type to :

type="datetime"
about 4 years ago · Juan Pablo Isaza Report

0

You can add your time in a new Date type like :

<input
 placeholder="enter time"
 type="time"
 onChange={setTime(this)}
/>

function setTime(time) {
 const today = new Date();
 console.log(new Date(today.toDateString() + ' ' + time.value));
}

JSFiddle

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!